790e49358ff3abb261c1d3881cbff76ae8621e1b,gdx/src/com/badlogic/gdx/scenes/scene2d/Actor.java,Actor,setWidth,#number#,460

Before Change


	}

	public void setWidth (float width) {
		float oldWidth = this.width;
		this.width = width;
		if (width != oldWidth) sizeChanged();
	}

	public float getHeight () {

After Change


		return width;
	}

	public void setWidth (float width) {
		if (this.width != width) {
			this.width = width;
			sizeChanged();
		}
	}